home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / install / mkpkg-1.000 / mkpkg-1 / mkpkg / pkginstall < prev    next >
Text File  |  1994-05-29  |  548b  |  34 lines

  1. #!/bin/sh
  2. #
  3. #                 mkpkg
  4. #              version 1.0
  5. # Author : A. Davison
  6. # Copyright (C) 1994, Esonque Systems
  7. #
  8. #
  9. # This file may be distributed freely AS LONG AS this copyright message
  10. # remains in the distributed/derivative file.
  11. #
  12.  
  13. prog=$1;
  14. cmdline=$*;
  15. shift;
  16.  
  17.  
  18.  
  19. for a in $* ; do
  20.     b=$c
  21.     c=$a
  22.     echo >> /dev/null
  23. done
  24.  
  25. # If the destination is a directory, make sure that the filename goes into the
  26. # package description line too.
  27. if [ -d $a ]; then
  28.     a=$a/`basename $b`
  29. fi
  30.  
  31. echo $a | sed 's/^.//' >> /tmp/pkg.$PACKAGE_NAME
  32. $prog $*
  33.